Remove some dead code from the consoled client.
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>
Mon, 3 Apr 2006 16:48:39 +0000 (17:48 +0100)
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>
Mon, 3 Apr 2006 16:48:39 +0000 (17:48 +0100)
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
tools/console/client/main.c

index aba35ec2c66725867fe3be98f949cf94f6ae9e3e..a43ee26463b3880e6e726e386b7210e2c2baa9d0 100644 (file)
@@ -36,7 +36,6 @@
 #include <errno.h>
 #include <pty.h>
 
-#include "xenctrl.h"
 #include "xs.h"
 
 #define ESCAPE_CHARACTER 0x1d
@@ -92,7 +91,7 @@ static void restore_term(int fd, struct termios *old)
        tcsetattr(fd, TCSAFLUSH, old);
 }
 
-static int console_loop(int xc_handle, domid_t domid, int fd)
+static int console_loop(int fd)
 {
        int ret;
 
@@ -161,7 +160,6 @@ int main(int argc, char **argv)
 {
        struct termios attr;
        int domid;
-       int xc_handle;
        char *sopt = "h";
        int ch;
        int opt_ind=0;
@@ -206,11 +204,6 @@ int main(int argc, char **argv)
                err(errno, "Could not contact XenStore");
        }
 
-       xc_handle = xc_interface_open();
-       if (xc_handle == -1) {
-               err(errno, "xc_interface_open()");
-       }
-       
        signal(SIGTERM, sighandler);
 
        path = xs_get_domain_path(xs, domid);
@@ -260,7 +253,7 @@ int main(int argc, char **argv)
        free(path);
 
        init_term(STDIN_FILENO, &attr);
-       console_loop(xc_handle, domid, spty);
+       console_loop(spty);
        restore_term(STDIN_FILENO, &attr);
 
        return 0;